home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / DevDisk 65 (1989)(DevWare PD).zip / DevDisk 65 (1989)(DevWare PD).adf / prosuite / globfio.c < prev    next >
C/C++ Source or Header  |  1990-07-11  |  2KB  |  47 lines

  1.  
  2. /* *** globfio.c ************************************************************
  3.  *
  4.  * File IO Suite  --  Global Variable Definitions
  5.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *         (available soon if not already)
  7.  *
  8.  * Copyright (C) 1986, 1987, Robert J. Mical
  9.  * All Rights Reserved.
  10.  *
  11.  * Created for Amiga developers.
  12.  * Any or all of this code can be used in any program as long as this
  13.  * entire copyright notice is retained, ok?
  14.  *
  15.  * The Amiga Programmer's Suite Book 1 is copyrighted but freely distributable.
  16.  * All copyright notices and all file headers must be retained intact.
  17.  * The Amiga Programmer's Suite Book 1 may be compiled and assembled, and the 
  18.  * resultant object code may be included in any software product.  However, no 
  19.  * portion of the source listings or documentation of the Amiga Programmer's 
  20.  * Suite Book 1 may be distributed or sold for profit or in a for-profit 
  21.  * product without the written authorization of the author, RJ Mical.
  22.  * 
  23.  * HISTORY      NAME            DESCRIPTION
  24.  * -----------  --------------  --------------------------------------------
  25.  * 27 Sep 87    RJ              Changed name of this file from global.c
  26.  * 4 Feb 87     RJ              Real release
  27.  * 12 Aug 86    RJ >:-{)*       Prepare (clean house) for release
  28.  * 3 May 86     RJ              Fix prop gadget for both 1.1 and 1.2
  29.  * 1 Feb 86     =RJ Mical=      Created this file.
  30.  *
  31.  * *********************************************************************** */
  32.  
  33.  
  34. /* This prevents eglobfio.c from being included */
  35. #define EGLOBAL_FILEIO_CANCEL
  36. #define FILEIO_SOURCEFILE
  37. #include "fileio.h"
  38.  
  39.  
  40.  
  41. /* === System Global Variables ========================================== */
  42. struct IntuitionBase *IntuitionBase = NULL;
  43. struct GfxBase *GfxBase = NULL;
  44. struct DosLibrary *DosBase = NULL;
  45. struct IconBase *IconBase = NULL;
  46.  
  47.